Welcome![Sign In][Sign Up]
Location:
Search - qt m

Search list

[AlgorithmMAIN 3-DIMENSIONAL CFD-PROGRAM

Description:

 

#//u(i,j)        x方向的速度u;或者θ方向速度
#//u(i,j)        y方向的速度v;或者径向速度ur'h\K
#//pc(i,j)       压力修正 p'[OS
#//p(i,j)        压力p-=5-+
#//p(i,j)        密度ρBk
#//p(i,j)        扩散系数γQ"G48E
#//t(i,j)        温度Tn7/bKr
#//ake(i,j)        湍流脉动能量k971E
#//dis(i,j)      动能的耗散率ε4
 
//amut(i,j)     湍动扩散系数+
//gen(i,j)      湍流能量的生成率S
//f(i,jnf)     不同的φ变量M
//lsolve(nf)   1,求解变量f(i,j,nf)  8
//lprint(nf)   1,打印变量f(i,j,nf)   ~f
//lblk(nf)     1,对变量f(i,j,nf)应用块修正b5|{@U
//mode         选择坐标系的变量. 目前只支持mode=1.
mode=1 直角坐标系(x~y)BMI
mode=2 圆柱坐标系(r~z)^pg>)
mode=3 极坐标(r~θ)   Z^r[LE
solve子程序中求解变量f(i,j,nf)的重复扫描次数 b
变量fi,j,nf)的字符性标题 |L;
 
//xl    计算区域在x方向上的宽度)?
//yl    计算区域在y方向上的宽度@ob
//l1     x方向上主控制体的网格数。也是x方向上压力节点位置的最后一个i值。
//m1   y方向上主控制体的网格数。也是y方向上压力节点位置的最后一个j值。
//dt           时间步长 △t
//第三部分网格设定的变量
//x(i)        节点位置的x
//xu(i)       主控制容积在x方向的界面位置,即速度u(i,j)所在位置
//xdif(i)     差值 x(i)-x(i-1)
 //xcv(i)      主控制容积在x方向上的宽度
//xcvs(i)     速度u(i,j)的控制容积在x方向上的宽度
//y(j)        节点位置的y
//yv(j)       主控制容积在y方向的界面位置,即速度v(i,j)所在位置
//ydif(j)     差值 y(j)-x(j-1)
//ycv(j)      主控制容积在y方向上的宽度
//ycvs(j)     速度v(i,j)的控制容积在y方向上的宽度
////r(i,j)      主网络节点的半径r
////rmn(j)      在速度v(i,j)所在处的半径r之值
////sx (j)      主网格节点位置y(j)x方向上的标尺因子
//sxmn(j)     在界面位置yv(j)x方向的尺度因子
       //上面四个变量应用于非直角坐标系的情况
//xcvi(i,j)   xcv(i) 中与u(i,j)的控制容积相覆盖的部分
//xcvi(i,j)   xcv(i) 中与u(i+1,j)的控制容积相覆盖的部分
//ycvr(j)     主控制容积垂直于x方向的面的面积
//ycvrs(j)    速度v(i,j)的控制容积垂直于x方向的面的面积
//arx(j)      x方向相垂直的控制容积的面积
//arxj(j)     arx(j)中与速度v(i,j)的控制容积相覆盖的部分
//arxjp(j)    arx(j)中与速度v(i,j+1)的控制容积相覆盖的部分
//arxjarjxp实际上对应于x方向上的ycviycvip
 
//第四部分差分方程系数设定的变量
//con(i,j)    离散方程中的常数项b,在子程序gamsor中又作为存储sc的单元
//aip(i,j)    系数ae
//aim(i,j)    系数aw
//ajp(i,j)    系数an
//ajm(i,j)    系数as
//ap(i,j)     系数ap,在在子程序gamsor中又作为存储sp的单元
//flow         穿过控制容积界面的质量流率
//diff         扩散传导性 D
//acof         DIFLOW子程序计算的量,它给出了对流与扩散作用的联合影响
 
//第五部分求解差分方程过程中的变量求解
//du(i,j)     影响u(i,j)de
//dv(i,j)     影响v(i,j)dn
//pv(j)       用于计算主网络节点i,j上的质量流率的ρvr的插值因子:计算式如下: //fvp(j)      说明同上
//fx(i)       用于计算主控制容积界面(即速度u(i,j)所在处)的密度
 
//            rhom的插值因子,计算式如下:
 
//fxm(i)      说明同上
//pt(i)pt(j) tdma中的转换系数(消元过程中)l
//qt(i)qt(j) tdma中的转换系数(消元过程中)
//第六部分 index变量
int nf;               //nf           标明不同φ变量的下标值
int nfmax;         //nfmax        设有存储单元的nf的最大值
int np;              //(nfmax)      p(i,j)实际为f(i,j,nfmax)
int nrho;           //(nfmax+1)    rho(i,j)实际为f(i,j,nfmax)
int ngam;         //(nfmax+2)    gam(i,j)实际为f(i,j,nfmax+2)n
int l2;              //l2           (l1-1)
int l3;              //l3           (l1-2)
int m2;           //m2           (m1-1)
int m3;           //m3           (m1-2) 2
int ist;                    //ist          i的第一个内节点值`
int jst;                    //jst          j的第一个内节点值
int iter;                   //iter         不稳态问题的步进计数
int last;                   //last         用户所规定的最大迭代计数
int iter1;             //iter1        一个时间点求解setup2( )的迭代次数
double time;              //time         不稳态问题中的时间t
int ipref;              //ipref        压力参考结点的i
int jpref;                //jpref        压力参考结点的j=/
 
//第七部分其它变量
double rhocon;           //rhocon       密度为常数的问题中的ρ
int lstop;                 //lstop        =1时,停止计算
double  smax;            //smax         p'方程中的质源的最大值

double  ssum;            //ssum         p'方程中的质源的代数和


Platform: | Size: 11439 | Author: tanglincn | Hits:

[GUI Developqt-moc

Description: 一个实现模拟QT中信号/槽模型的工程,接口方法与命名规则均qt中一致,可以看清楚信号槽的实现原理-A realization of simulated QT signal/slot model of the project, interface methods and rename qt agreed rules, you can look trough the realization of the principle of signal
Platform: | Size: 19456 | Author: likun | Hits:

[Linux-UnixMD5.tar

Description: 一个用Qt开发的MD5暴力破解工具,可破解4位数字密码。-Qt development of a use of violence to break MD5 tool to crack the 4-digit password.
Platform: | Size: 514048 | Author: Hxcan | Hits:

[Browser Clientqgmview-0.1.7.tar

Description: qt实现的地图浏览器,能对地图进行基本的操作如拖动,放大,缩小。有助于qt的学习-the realization of the map qt browser can map the basic operation such as dragging, zooming and narrow. Contribute to the learning qt
Platform: | Size: 77824 | Author: 杨华为 | Hits:

[Embeded Linuxqt_mp3_player

Description: 用QT开发的嵌入式系统MP3播放程序,可以对MP3文件进行管理-QT development of embedded systems with MP3 player, MP3 files can be managed
Platform: | Size: 45056 | Author: paul | Hits:

[GUI Developqtwinmigrate-2.8-opensource

Description: Qt与MFC以及Win32窗口混合使用,提供的一些类能够在Qt中使用Win32窗口或在MFC中使用Qt-Qt with MFC and Win32 window, mixed use, providing some of the Qt classes can use Win32 or MFC window using Qt
Platform: | Size: 240640 | Author: 小马 | Hits:

[Crack HackMD5

Description: 传统的MD5算法,利用Qt编写了简单GUI.-MD5 algorithm
Platform: | Size: 862208 | Author: lizesong | Hits:

[Multimedia Developtotem-2.28.5.tar

Description: 一款linux下的播放器 基于gtk以gstreamer作为播放后端 可以播放MP4 avi qt等格式音视频文件-A player under linux to gstreamer gtk-based back-end as a player that can play MP4 avi qt video and audio file formats
Platform: | Size: 4654080 | Author: 媛媛 | Hits:

[Otherm

Description: 使用Qt实现界面动态效果样例,vs界面中的停靠面板鼠标响应-Using the Qt interface dynamic effects of sample vs. interface in the docked panel mouse response
Platform: | Size: 2048 | Author: jie | Hits:

[Special Effectsunittrans

Description: 使用Qt写的单位转换工程文件。可以在米、毫米、英尺、英寸、尺寸之间任意转换。在左边文本框输入数值,右边的文本框自动显示结果,同样,在右边输入,左边自动显示结果,使用非常方便。当然还有不足之处,会陆续改进。-Use Qt to write unit conversion project file. Can any conversion between M, mm, inches, feet, size. On the left side of the text box to enter the value on the right, the text box automatically display results, also, on the right input, automatically display the results on the left, the use is very convenient. Of course there are shortcomings, will be improved.
Platform: | Size: 41984 | Author: 刘志 | Hits:

[Embeded LinuxDMC2440F

Description: DMC-2440-F采用基于ARM920T内核的Samsung处理器 S3C2440A, 标准主频400MHz,最高主频可达533MHz。采用64MB的SDRAM和64MB的Nand Flash。DMC-2440-F嵌入式开发系统外设非常丰富,功能强大,适用于各种手持设备、消费电子和工业控制设备的开发。支持嵌入式Linux和WINCE5.0.NET操作系统。提供完整的Wince5.0 BSP。 采用linux-2.4.18内核,支持多种文件系统,像cramfs、yaffs2、ext2、Fat、NFS等。linux驱动支持:串口、10/100M网口、音频、USB Host、LCD、触摸屏、USB鼠标、U盘等,支持Qt图形界面。 Wince5.0驱动支持:LCD、触摸屏、KEY 、Nandflsh、串口、USB等-DMC- 2440- F the Samsung processor S3C2440A based on ARM920T kernel, standard frequency 400 MHZ, the highest frequency of up to 533 MHZ. The 64 MB SDRAM and 64 MB Nand Flash. DMC- 2440- F embedded development system peripherals is rich, powerful functions, suitable for all kinds of handheld devices, consumer electronics and industrial control equipment development. Support the embedded Linux operating system and WINCE5.0.NET. Provide complete Wince5.0 BSP. The Linux- 2.4.18 kernel, support for multiple file system, like cramfs, yaffs2, however, Fat, NFS, etc. Linux driver support: a serial port, 10/100 m so, audio, USB Host, LCD, touch screen, USB mouse, U disk, etc., to support Qt graphical interface. Wince5.0 driver support: LCD, touch screen, KEY, Nandflsh, serial port, USB, etc
Platform: | Size: 31744 | Author: 龙芯 | Hits:

[Data structsjosephus

Description: 设编号为1,2,…,n(n>0)个人按顺时针方向围坐一圈,每人持有一个正整数密码。开始时给出一个报数上限m,从第一个人开始顺时针方向自1起顺序报数,报到m时停止报数,报m的人出列,将他的密码作为新的m值,从他在顺时针方向上的下一个人起重新自1报数;如此下去直到所有人全部出列为止。设计一个程序模拟此过程,在qt中设计出基本的提示及显示结果的界面,给出出列人的编号序列及出列人手持密码值。- A description of the problem are: number 1,2, ..., n of n individuals sitting around a circle clockwise, each holding a password (positive integer). Choose a positive integer beginning as a limit on the number of reported m, starting the first person to start a clockwise direction a report number, report the number of reported m stop. Who reported m out of line, his password as the new m value, in a clockwise direction the next person he began to re-reported a number, it goes on until all the people all of the columns so far. Design a program, according to the column order prints each number.
Platform: | Size: 5120 | Author: 孟迪 | Hits:

[Dialog_Windowvisual-cPP

Description: C++ QT 3D IDE for development of VS1003, VS Show time applet on the desktop, Music Search Software The NAudio Play wav, MP3 and othe a mp3 player,simple but a good ex five files inside the documents the gstreamer-sdk inside the exam Calculate the mp3 player time, ca Loading the lyrics RM skin video player program. mpeg-2,mp3 encoder and decoder The mp3 decode program can conver VOD system source on mp3 algorithm on and implement H.264 codec source code has been mpeg/audio adds the decoding proc FFmpeg extract a VC works ou Programming Interface Super decod Transfer avi to mpeg1 u-ATMEL mp3 program includes SCH, Source for the Distributed Real-T Poetic charm mp3 play MP1/MP2/MP3 decoder Berkeley Plateau Research Group M which contains the following elem MPEG-1 video stream editor for Un Berkeley Plateau Research Group M Michael Simmons MPEG-1 systems st MPEG 1 layer 3 audio player sourc Mailto US | Copyright Complaints-C++ QT 3D IDE for development of VS1003, VS Show time applet on the desktop, Music Search Software The NAudio Play wav, MP3 and othe a mp3 player,simple but a good ex five files inside the documents the gstreamer-sdk inside the exam Calculate the mp3 player time, ca Loading the lyrics RM skin video player program. mpeg-2,mp3 encoder and decoder The mp3 decode program can conver VOD system source on mp3 algorithm on and implement H.264 codec source code has been mpeg/audio adds the decoding proc FFmpeg extract a VC works ou Programming Interface Super decod Transfer avi to mpeg1 u-ATMEL mp3 program includes SCH, Source for the Distributed Real-T Poetic charm mp3 play MP1/MP2/MP3 decoder Berkeley Plateau Research Group M which contains the following elem MPEG-1 video stream editor for Un Berkeley Plateau Research Group M Michael Simmons MPEG-1 systems st MPEG 1 layer 3 audio player sourc Mailto US | Copyright Complaints
Platform: | Size: 18432 | Author: lk | Hits:

[VC/MFCShlee-M.---Proffessional-programming-on-CPP.-PCD.

Description: The book is dedicated to developing applications for Windows, Linux and Mac OS X with use of Qt version 4.8 library.Language : russian, format : PDF,Author:M.Shlee. Considered in detail the possibilities offered by this library, and describes the features that differentiate it other libraries. Described IDE Qt Creator development. Showing the creation of user interfaces c using Qt Quick and QML. The book contains detailed information about the classes of Qt 4 and are prac-cal recommendations of their application, illustrated in the big if-honors detail annotated examples. Projects examples the book are available on CD. For programmers.-The book is dedicated to developing applications for Windows, Linux and Mac OS X with use of Qt version 4.8 library.Language : russian, format : PDF,Author:M.Shlee. Considered in detail the possibilities offered by this library, and describes the features that differentiate it other libraries. Described IDE Qt Creator development. Showing the creation of user interfaces c using Qt Quick and QML. The book contains detailed information about the classes of Qt 4 and are prac-cal recommendations of their application, illustrated in the big if-honors detail annotated examples. Projects examples the book are available on CD. For programmers.
Platform: | Size: 37556224 | Author: mstif | Hits:

CodeBus www.codebus.net